home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 60149 / 60149.xpi / chrome / content / rays_rs.js next >
Text File  |  2010-01-19  |  18KB  |  481 lines

  1. /*
  2. ***** BEGIN LICENSE BLOCK *****
  3. Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  
  5. The contents of this file are subject to the Mozilla Public License Version 
  6. 1.1 (the "License"); you may not use this file except in compliance with 
  7. the License. You may obtain a copy of the License at 
  8. http://www.mozilla.org/MPL/
  9.  
  10. Software distributed under the License is distributed on an "AS IS" basis,
  11. WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. for the specific language governing rights and limitations under the
  13. License.
  14.  
  15. The Original Code is RAYS RS.
  16.  
  17. The Initial Developer of the Original Code is
  18. SAKURAI Kenichi <http://something.cool.coocan.jp/kenichi/>.
  19. Portions created by the Initial Developer are Copyright (C) 2010
  20. the Initial Developer. All Rights Reserved.
  21.  
  22. Contributor(s):
  23.  
  24. Alternatively, the contents of this file may be used under the terms of
  25. either the GNU General Public License Version 2 or later (the "GPL"), or
  26. the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27. in which case the provisions of the GPL or the LGPL are applicable instead
  28. of those above. If you wish to allow use of your version of this file only
  29. under the terms of either the GPL or the LGPL, and not to allow others to
  30. use your version of this file under the terms of the MPL, indicate your
  31. decision by deleting the provisions above and replace them with the notice
  32. and other provisions required by the GPL or the LGPL. If you do not delete
  33. the provisions above, a recipient may use your version of this file under
  34. the terms of any one of the MPL, the GPL or the LGPL.
  35.  
  36. ***** END LICENSE BLOCK *****
  37. */
  38.  
  39. var raysRs = {};
  40.  
  41. raysRs.httpRequestRa = null;
  42. raysRs.httpRequestAm = null;
  43. raysRs.httpRequestYs = null;
  44. raysRs.currentLocale;
  45.  
  46. raysRs.isJapan = function(){
  47.   return (/^ja/.test (raysRs.currentLocale));
  48. };
  49.  
  50. raysRs.removeAllChild = function (element){
  51.   for (;element.firstChild;){
  52.     element.removeChild (element.firstChild);
  53.   }
  54. };
  55.  
  56. raysRs.needReload = function (element, interval){
  57.   var itemTimestamp = element.getAttribute ("rays_rs_item_timestamp");
  58.   var genreTimestamp = element.getAttribute ("rays_rs_genre_timestamp");
  59.   var now;
  60.  
  61.   var result = true;
  62.  
  63.   if (itemTimestamp != null && itemTimestamp != "" && genreTimestamp != null && genreTimestamp != ""){
  64.     now = new Date().getTime();
  65.     if (interval * 1000 > now - parseInt (itemTimestamp) || interval * 1000 > now - parseInt (genreTimestamp)){
  66.       result = false;
  67.     }
  68.   }
  69.  
  70.   return result;
  71. };
  72.  
  73. raysRs.evaluateXPath = function (aNode, aExpr){
  74.   var xpe = new XPathEvaluator();
  75.   var nsResolver = xpe.createNSResolver (aNode.ownerDocument == null ? aNode.documentElement : aNode.ownerDocument.documentElement);
  76.   var result = xpe.evaluate (aExpr, aNode, nsResolver, 0, null);
  77.   var found = [];
  78.   var res;
  79.  
  80.   while (res = result.iterateNext()){
  81.     found.push (res);
  82.   }
  83.  
  84.   return found;
  85. };
  86.  
  87. raysRs.infoReceived = function(){
  88. };
  89.  
  90. raysRs.recordRakutenImpression = function(){
  91. };
  92.  
  93. raysRs.recordAmazonImpression = function(){
  94.   httpRequestAm = new XMLHttpRequest();
  95.   httpRequestAm.open ("GET", "http://www.assoc-amazon.jp/e/ir?o=9&t=kenichisspace-22&l=wsw&camp=759&creative=7995");
  96.   httpRequestAm.onload = raysRs.infoReceived;
  97.   try{
  98.     httpRequestAm.send (null);
  99.   } catch (e){
  100.   }
  101. };
  102.  
  103. raysRs.recordYahooShoppingImpression = function(){
  104.   httpRequestYs = new XMLHttpRequest();
  105.   httpRequestYs.open ("GET", "http://ad.jp.ap.valuecommerce.com/servlet/gifbanner?sid=2333728&pid=878835741");
  106.   httpRequestYs.onload = raysRs.infoReceived;
  107.   try{
  108.     httpRequestYs.send (null);
  109.   } catch (e){
  110.   }
  111. };
  112.  
  113. raysRs.recordAmazonUsImpression = function(){
  114.   httpRequestAm = new XMLHttpRequest();
  115.   httpRequestAm.open ("GET", "http://www.assoc-amazon.com/e/ir?o=1&t=kenichisspace-20&l=wsw&camp=212361&creative=392009");
  116.   httpRequestAm.onload = raysRs.infoReceived;
  117.   try{
  118.     httpRequestAm.send (null);
  119.   } catch (e){
  120.   }
  121. };
  122.  
  123. raysRs.recordImpression = function(){
  124.   if (raysRs.isJapan()){
  125.     raysRs.recordRakutenImpression();
  126.     raysRs.recordAmazonImpression();
  127.     raysRs.recordYahooShoppingImpression();
  128.   } else{
  129.     raysRs.recordAmazonUsImpression();
  130.   }
  131. };
  132.  
  133. raysRs.init = function(){
  134.   var contentArea = document.getElementById ("contentAreaContextMenu");
  135.   contentArea.addEventListener ("popupshowing", this, false);
  136.  
  137.   raysRs.currentLocale = Components.
  138.                          classes["@mozilla.org/preferences-service;1"].
  139.                          getService (Components.interfaces.nsIPrefService).
  140.                          getBranch ('').
  141.                          getCharPref ('general.useragent.locale');
  142.  
  143.   raysRs.recordImpression();
  144.  
  145.   if (raysRs.isJapan()){
  146.     document.getElementById ("rays_rs_menu_am_us_ranking").hidden = true;
  147.   } else{
  148.     document.getElementById ("rays_rs_menu_ra_ranking").hidden = true;
  149.     document.getElementById ("rays_rs_menu_am_ranking").hidden = true;
  150.     document.getElementById ("rays_rs_menu_ys_ranking").hidden = true;
  151.   }
  152. };
  153.  
  154. raysRs.handleEvent = function (event){
  155.   var menuseparator;
  156.   var menuitemRa;
  157.   var menuitemAm;
  158.   var menuitemYs;
  159.   var menuitemAl;
  160.   var menuitemAmUs;
  161.   var selected;
  162.  
  163.   if (event.type == "popupshowing" && event.target == event.currentTarget){
  164.     selected = getBrowserSelection() != "";
  165.     menuseparator = document.getElementById ("rays_rs_menuseparator");
  166.     menuitemRa = document.getElementById ("rays_rs_menuitem_ra");
  167.     menuitemAm = document.getElementById ("rays_rs_menuitem_am");
  168.     menuitemYs = document.getElementById ("rays_rs_menuitem_ys");
  169.     menuitemAl = document.getElementById ("rays_rs_menuitem_al");
  170.     menuitemAmUs = document.getElementById ("rays_rs_menuitem_am_us");
  171.     menuseparator.hidden = !selected;
  172.     menuitemRa.hidden = !selected;
  173.     menuitemAm.hidden = !selected;
  174.     menuitemYs.hidden = !selected;
  175.     menuitemAl.hidden = !selected;
  176.     menuitemAmUs.hidden = !selected;
  177.  
  178.     if (raysRs.isJapan()){
  179.       menuitemAmUs.hidden = true;
  180.     } else{
  181.       menuitemRa.hidden = true;
  182.       menuitemAm.hidden = true;
  183.       menuitemYs.hidden = true;
  184.       menuitemAl.hidden = true;
  185.     }
  186.   }
  187. };
  188.  
  189. raysRs.searchRakuten = function (arg){
  190.   gBrowser.addTab ("http://pt.afl.rakuten.co.jp/c/0017caac.46f19b8a/?sv=2&p=0&sitem=" + getBrowserSelection());
  191. };
  192.  
  193. raysRs.searchAmazon = function (arg){
  194.   gBrowser.addTab ("http://www.amazon.co.jp/s/?tag=kenichisspace-22&creative=7995&campaign=759&link_code=wsw&__mk_ja_JP=\u30AB\u30BF\u30AB\u30CA&search-alias=aps&field-keywords=" + getBrowserSelection());
  195. };
  196.  
  197. raysRs.searchYahooShopping = function (arg){
  198.   gBrowser.addTab ("http://ck.jp.ap.valuecommerce.com/servlet/referral?sid=2333728&pid=878835741&vc_url=http%3a%2f%2fshopping%2eyahoo%2eco%2ejp%2fsearch%3ffirst%3d1%26cid%3d%26p%3d" + getBrowserSelection());
  199. };
  200.  
  201. raysRs.searchAmazonUs = function (arg){
  202.   gBrowser.addTab ("http://www.amazon.com/s/?tag=kenichisspace-20&creative=392009&campaign=212361&link_code=wsw&_encoding=UTF-8&search-alias=aps&field-keywords=" + getBrowserSelection());
  203. };
  204.  
  205. raysRs.searchAll = function (arg){
  206.   raysRs.searchRakuten (arg);
  207.   raysRs.searchAmazon (arg);
  208.   raysRs.searchYahooShopping (arg);
  209. };
  210.  
  211. raysRs.fetchRakuten = function (element, separator, item, url, id, gender, generation){
  212.   var httpRequest = null;
  213.   var json;
  214.  
  215.   function infoReceived(){
  216.     var data = httpRequest.responseText;
  217.     var i;
  218.     var ptr1;
  219.     var ptr2;
  220.  
  221.     if (data.length){
  222.       json = JSON.parse (data);
  223.  
  224.       if (item){
  225.         if (json.Body && json.Body['ItemRanking']){
  226.           for (i = 0; i < json.Body['ItemRanking'].Items.Item.length; i++){
  227.             ptr1 = document.createElement ("menuitem");
  228.             ptr1.setAttribute ("label", json.Body['ItemRanking'].Items.Item[i].itemName);
  229.             ptr1.setAttribute ("oncommand", "gBrowser.addTab('" + json.Body['ItemRanking'].Items.Item[i].affiliateUrl + "');");
  230.             element.appendChild (ptr1);
  231.           }
  232.         }
  233.  
  234.         element.setAttribute ("rays_rs_item_timestamp", "" + new Date().getTime());
  235.       } else{
  236.         for (i = 0; i < json.Body['GenreSearch'].child.length; i++){
  237.           ptr1 = document.createElement ("menu");
  238.           ptr1.setAttribute ("label", json.Body['GenreSearch'].child[i].genreName);
  239.           element.insertBefore (ptr1, separator);
  240.           ptr2 = document.createElement ("menupopup");
  241.           ptr2.setAttribute ("id", id + "_" + json.Body['GenreSearch'].child[i].genreId);
  242.           ptr2.setAttribute ("onpopupshowing",
  243.                              "raysRs.rankingRakuten('" +
  244.                              id +
  245.                              "_" +
  246.                              json.Body['GenreSearch'].child[i].genreId +
  247.                              "',null,null," +
  248.                              json.Body['GenreSearch'].child[i].genreId +
  249.                              ");");
  250.           ptr1.appendChild (ptr2);
  251.         }
  252.  
  253.         element.setAttribute ("rays_rs_genre_timestamp", "" + new Date().getTime());
  254.       }
  255.     }
  256.   }
  257.  
  258.   httpRequest = new XMLHttpRequest();
  259.  
  260.   httpRequest.open ("GET", url);
  261.  
  262.   httpRequest.onload = infoReceived;
  263.   try{
  264.     httpRequest.send (null);
  265.   } catch (e){
  266.   }
  267. };
  268.  
  269. raysRs.fetchAmazon = function (element, separator, item, url, country, root, index, id){
  270.   var httpRequest = null;
  271.  
  272.   function infoReceived(){
  273.     var data = httpRequest.responseText;
  274.     var dom;
  275.     var i;
  276.     var items;
  277.     var ptr1;
  278.     var ptr2;
  279.  
  280.     if (data.length){
  281.       data = data.replace (/ xmlns=\"http:\/\/webservices\.amazon\.com\/AWSECommerceService\/2006-09-13\"/, "");
  282.       dom = new DOMParser().parseFromString (data, "text/xml");
  283.  
  284.       if (item){
  285.         items = raysRs.evaluateXPath (dom.documentElement, "/ItemSearchResponse/Items/Item");
  286.  
  287.         for (i = 0; i < items.length; i++){
  288.           ptr1 = document.createElement ("menuitem");
  289.           ptr1.setAttribute ("label", items[i].lastChild.lastChild.firstChild.nodeValue);
  290.           ptr1.setAttribute ("oncommand", "gBrowser.addTab('" + items[i].firstChild.nextSibling.firstChild.nodeValue + "');");
  291.           element.appendChild (ptr1);
  292.         }
  293.  
  294.         element.setAttribute ("rays_rs_item_timestamp", "" + new Date().getTime());
  295.       } else{
  296.         items = raysRs.evaluateXPath (dom.documentElement, "/BrowseNodeLookupResponse/BrowseNodes/BrowseNode/Children/BrowseNode");
  297.  
  298.         for (i = 0; i < items.length; i++){
  299.           ptr1 = document.createElement ("menu");
  300.           ptr1.setAttribute ("label", items[i].lastChild.firstChild.nodeValue);
  301.           element.insertBefore (ptr1, separator);
  302.           ptr2 = document.createElement ("menupopup");
  303.           ptr2.setAttribute ("id", id + "_" + items[i].firstChild.firstChild.nodeValue);
  304.           ptr2.setAttribute ("onpopupshowing",
  305.                              "raysRs.rankingAmazon('" +
  306.                              id +
  307.                              "_" +
  308.                              items[i].firstChild.firstChild.nodeValue +
  309.                              "','" +
  310.                              country +
  311.                              "','" +
  312.                              root +
  313.                              "'," +
  314.                              items[i].firstChild.firstChild.nodeValue +
  315.                              ");");
  316.           ptr1.appendChild (ptr2);
  317.         }
  318.  
  319.         element.setAttribute ("rays_rs_genre_timestamp", "" + new Date().getTime());
  320.       }
  321.     }
  322.   }
  323.  
  324.   httpRequest = new XMLHttpRequest();
  325.  
  326.   httpRequest.open ("GET", url);
  327.  
  328.   httpRequest.onload = infoReceived;
  329.   try{
  330.     httpRequest.send (null);
  331.   } catch (e){
  332.   }
  333. };
  334.  
  335. raysRs.fetchYahooShopping = function (element, separator, item, url, id, gender, generation, period){
  336.   var httpRequest = null;
  337.  
  338.   function infoReceived(){
  339.     var data = httpRequest.responseText;
  340.     var i;
  341.     var ptr1;
  342.     var ptr2;
  343.  
  344.     if (data.length){
  345.       json = JSON.parse (data);
  346.  
  347.       if (item){
  348.         for (i in json.ResultSet["0"].Result){
  349.           if (!isFinite (parseInt (i))){
  350.             continue;
  351.           }
  352.           if (json.ResultSet["0"].Result[i].Name){
  353.             ptr1 = document.createElement ("menuitem");
  354.             ptr1.setAttribute ("label", json.ResultSet["0"].Result[i].Name);
  355.             ptr1.setAttribute ("oncommand", "gBrowser.addTab('" + json.ResultSet["0"].Result[i].Url + "');");
  356.             element.appendChild (ptr1);
  357.           }
  358.         }
  359.  
  360.         element.setAttribute ("rays_rs_item_timestamp", "" + new Date().getTime());
  361.       } else{
  362.         for (i in json.ResultSet["0"].Result.Categories.Children){
  363.           if (!isFinite (parseInt(i))){
  364.             continue;
  365.           }
  366.           ptr1 = document.createElement ("menu");
  367.           ptr1.setAttribute ("label", json.ResultSet["0"].Result.Categories.Children[i].Title.Short);
  368.           element.insertBefore (ptr1, separator);
  369.           ptr2 = document.createElement ("menupopup");
  370.           ptr2.setAttribute ("id", id + "_" + json.ResultSet["0"].Result.Categories.Children[i].Id);
  371.           ptr2.setAttribute ("onpopupshowing",
  372.                              "raysRs.rankingYahooShopping('" +
  373.                              id +
  374.                              "_" +
  375.                              json.ResultSet["0"].Result.Categories.Children[i].Id +
  376.                              "',null,null,null," +
  377.                              json.ResultSet["0"].Result.Categories.Children[i].Id +
  378.                              ");");
  379.           ptr1.appendChild (ptr2);
  380.         }
  381.  
  382.         element.setAttribute ("rays_rs_genre_timestamp", "" + new Date().getTime());
  383.       }
  384.     }
  385.   }
  386.  
  387.   httpRequest = new XMLHttpRequest();
  388.  
  389.   httpRequest.open ("GET", url);
  390.  
  391.   httpRequest.onload = infoReceived;
  392.   try{
  393.     httpRequest.send (null);
  394.   } catch (e){
  395.   }
  396. };
  397.  
  398. raysRs.rankingRakuten = function (id, gender, generation, index){
  399.   var element = document.getElementById (id);
  400.   var url;
  401.  
  402.   if (raysRs.needReload (element, 3600 * 12)){
  403.     raysRs.removeAllChild (element);
  404.     element.appendChild (document.createElement ("menuseparator"));
  405.  
  406.     raysRs.fetchRakuten (element,
  407.                          element.lastChild,
  408.                          false,
  409.                          "http://api.rakuten.co.jp/rws/2.0/json?developerId=170e17ad1df9e7d3fc9cc7a1c8f5c0c9&affiliateId=0421aec8.d8170691.0421aec9.53c180f4&operation=GenreSearch&genreId=" +
  410.                          index +
  411.                          "&version=2007-04-11&genrePath=0",
  412.                          id,
  413.                          gender,
  414.                          generation);
  415.  
  416.     url = "http://api.rakuten.co.jp/rws/2.0/json?developerId=170e17ad1df9e7d3fc9cc7a1c8f5c0c9&affiliateId=0421aec8.d8170691.0421aec9.53c180f4&operation=ItemRanking&version=2009-04-15&genreId=" + index;
  417.  
  418.     raysRs.fetchRakuten (element, element.lastChild, true, url, id, gender, generation);
  419.   }
  420. };
  421.  
  422. raysRs.rankingAmazon = function (id, country, root, index){
  423.   var element = document.getElementById (id);
  424.  
  425.   if (raysRs.needReload (element, 1800)){
  426.     raysRs.removeAllChild (element);
  427.     element.appendChild (document.createElement ("menuseparator"));
  428.  
  429.     raysRs.fetchAmazon (element,
  430.                         element.lastChild,
  431.                         false,
  432.                         "http://amazonadapi.appspot.com/" + country + "/?Operation=BrowseNodeLookup&BrowseNodeId=" + index,
  433.                         country,
  434.                         root,
  435.                         index,
  436.                         id);
  437.  
  438.     raysRs.fetchAmazon (element,
  439.                         element.lastChild,
  440.                         true,
  441.                         "http://amazonadapi.appspot.com/" + country + "/?Operation=ItemSearch&SearchIndex=" + root + "&BrowseNode=" + index,
  442.                         country,
  443.                         root,
  444.                         index,
  445.                         id);
  446.   }
  447. };
  448.  
  449. raysRs.rankingYahooShopping = function (id, gender, generation, period, index){
  450.   var element = document.getElementById (id);
  451.  
  452.   if (raysRs.needReload (element, 3600 * 12)){
  453.     raysRs.removeAllChild (element);
  454.     element.appendChild (document.createElement ("menuseparator"));
  455.  
  456.     raysRs.fetchYahooShopping (element,
  457.                                element.lastChild,
  458.                                false,
  459.                                "http://shopping.yahooapis.jp/ShoppingWebService/V1/json/categorySearch?appid=qPMhN0Kxg64IvbyejiqKJ4mQog6c4Nmz1JPiGJE.qVyHteSj7lQhb8WrhULGUBT_Rg--&affiliate_type=vc&affiliate_id=http%3A%2F%2Fck.jp.ap.valuecommerce.com%2Fservlet%2Freferral%3Fsid%3D2333728%26pid%3D875961490%26vc_url%3D&category_id=" +
  460.                                index,
  461.                                id,
  462.                                gender,
  463.                                generation,
  464.                                period);
  465.  
  466.     raysRs.fetchYahooShopping (element,
  467.                                element.lastChild,
  468.                                true,
  469.                                "http://shopping.yahooapis.jp/ShoppingWebService/V1/json/categoryRanking?appid=qPMhN0Kxg64IvbyejiqKJ4mQog6c4Nmz1JPiGJE.qVyHteSj7lQhb8WrhULGUBT_Rg--&affiliate_type=vc&affiliate_id=http%3A%2F%2Fck.jp.ap.valuecommerce.com%2Fservlet%2Freferral%3Fsid%3D2333728%26pid%3D875961490%26vc_url%3D&category_id=" +
  470.                                index,
  471.                                id,
  472.                                gender,
  473.                                generation,
  474.                                period);
  475.   }
  476. };
  477.  
  478. window.addEventListener ("load", function(){raysRs.init();}, false);
  479.  
  480. //next step: gender, age, period Yahoo&Rakuten
  481.